 /* --- OGÓLNE STYLE I ZMIENNE (KINOWA CIEMNOŚĆ ZE ZŁOTEM) --- */

:root {

    --color-dark: #121212; /* Bardzo ciemny grafit / prawie czarny */

    --color-light: #F0F0F0; /* Jasny tekst */

    --color-accent: #FFD700; /* ELEGANCKIE ZŁOTO */

    --font-primary: 'Poppins', sans-serif;

}


* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


body {

    font-family: var(--font-primary);

    background-color: var(--color-dark);

    color: var(--color-light);

    line-height: 1.6;

    scroll-behavior: smooth;

}


h1, h2, h3 {

    font-weight: 700;

    line-height: 1.2;

}


a {

    color: var(--color-light);

    text-decoration: none;

    transition: color 0.3s;

}


/* Złoty hover dla linków */

a:hover {

    color: var(--color-accent);

}


.content-section {

    padding: 100px 5%;

    text-align: center;

}


.content-section h2 {

    font-size: 2.5em;

    margin-bottom: 60px;

    position: relative;

    display: inline-block;

}


/* Złota linia pod nagłówkiem H2 */

.content-section h2::after {

    content: '';

    display: block;

    width: 60px;

    height: 3px;

    background: var(--color-accent);

    margin: 10px auto 0;

}


.dark-bg {

    background-color: #0d0d0d;

}


/* --- PRZYCISK CTA --- */


/* Złote tło przycisku */

.cta-button {

    background-color: var(--color-accent);

    color: var(--color-dark);

    padding: 10px 20px;

    border-radius: 5px;

    font-weight: 600;

    transition: background-color 0.3s, transform 0.3s;

    text-transform: none;

}


.cta-button:hover {

    background-color: #ffffff;

    color: var(--color-dark);

    transform: translateY(-2px);

}


/* --- HERO (Sekcja Wizerunku - Układ dwukolumnowy) --- */

.hero-section {

    min-height: 100vh;

    padding-top: 0; /* Bez nawigacji, nie potrzeba górnego paddingu */

    display: flex;

    align-items: center;

    justify-content: center;

}


.profile-layout {

    display: flex;

    align-items: flex-start;

    max-width: 1200px;

    margin: 0 5%;

    padding: 50px 0;

    width: 100%;

    gap: 50px;

}


/* Poprawione style dla kontenera wideo (duże, ale stabilne) */
.profile-video-wrapper { 
    flex: 1; 
    text-align: right; 
    position: relative;
    overflow: hidden;
    
    /* KLUCZOWA ZMIANA: Ustawienie STAŁEJ WYSOKOŚCI 450px dla stabilności i dużego wideo */
    height: 450px; 
    max-width: 400px; /* Utrzymujemy maksymalną szerokość 400px */
}

.profile-video-wrapper video { 
    width: 100%;
    /* KLUCZOWA ZMIANA: Wideo wypełnia wysokość kontenera */
    height: 100%; 
    max-width: 100%;
    
    /* Wypełnia kontener, przycinając krawędzie i zachowując proporcje: */
    object-fit: cover; 
    
    display: block;
    /* Usunięta ramka i cień */
}

.profile-text {

    flex: 1.5;

    padding-left: 30px;

}


/* Wyrównanie do prawej dla tekstu */

.right-aligned-text {

    text-align: right;

}


.name {

    font-size: 3.5em;

    letter-spacing: 2px;

    margin-bottom: 0;

    color: var(--color-light);

}


/* Funkcja w kolorze złotego akcentu */

.function {

    font-size: 1.4em;

    font-weight: 300;

    color: var(--color-accent);

    margin-top: 0;

    margin-bottom: 30px;

}


.bio-content p {

    max-width: 550px;

    margin-left: auto;

    margin-bottom: 15px;

    opacity: 0.9;

    text-align: left; /* Biografia lepiej czyta się wyjustowana do lewej w bloku */

}


/* --- SELECTED VIDEO WORKS (Style dla pojedynczych projektów) --- */

.video-project {

    max-width: 900px;

    margin: 0 auto 80px auto;

    text-align: center;

}


/* Złoty tytuł wideo */

.video-project h3 {

    font-size: 1.8em;

    margin-bottom: 15px;

    color: var(--color-accent);

}


/* Style dla opisów wideo */

.video-description {

    max-width: 800px;

    margin: 0 auto 25px auto;

    font-size: 1em;

    opacity: 0.9;

    text-align: left;

}


/* Styl dla responsywnego wideo w proporcjach 16:9 */

.vimeo-embed-container {

    position: relative;

    width: 100%;

    padding-bottom: 56.25%; /* Stosunek szerokości do wysokości 16:9 */

    height: 0;

    overflow: hidden;

    border: 1px solid #333; /* Kinowa ramka */

}


.vimeo-embed-container iframe {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

}


/* --- KONTAKT I FORMULARZ --- */

#contact {

    background-color: #0d0d0d;

}


.contact-container {

    display: flex;

    justify-content: center;

    gap: 80px;

    max-width: 1000px;

    margin: 0 auto;

    text-align: left;

    flex-wrap: wrap;

}


.contact-form {

    display: flex;

    flex-direction: column;

    width: 100%;

    max-width: 450px;

}


.contact-form input[type="text"],

.contact-form input[type="email"],

.contact-form textarea {

    padding: 15px;

    margin-bottom: 20px;

    border: 1px solid #444;

    background-color: #1e1e1e;

    color: var(--color-light);

    font-family: var(--font-primary);

    font-size: 1em;

    border-radius: 5px;

    transition: border-color 0.3s;

}


/* Złota obwódka formularza przy focusie */

.contact-form input:focus,

.contact-form textarea:focus {

    border-color: var(--color-accent);

    outline: none;

}


.contact-form .cta-button {

    align-self: flex-start;

}


.contact-info {

    max-width: 300px;

    padding-top: 15px;

    line-height: 1.8;

}


.contact-info p {

    margin-bottom: 10px;

}


/* Kluczowe informacje kontaktowe w kolorze złotym */

.contact-info strong {

    color: var(--color-accent);

}


/* --- FOOTER / COMING SOON --- */

footer.coming-soon {

    padding: 20px;

    background-color: var(--color-dark);

    text-align: center;

    font-size: 0.9em;

    opacity: 0.6;

}
/* --- INSIGHTS / BLOG SECTION --- */
#insights {
    /* Utrzymujemy padding i styl sekcji, które już masz w content-section */
}

.insights-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    flex-wrap: wrap; /* Zapewnia, że posty przejdą do nowej linii na małych ekranach */
}

.insight-post {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 30px;
    background-color: #1e1e1e; /* Lekko jaśniejsze tło dla lepszej separacji */
    border-top: 3px solid var(--color-accent); /* Złoty akcent na górze */
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.insight-post h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.gold-text {
    color: var(--color-accent);
}

.post-date {
    font-size: 0.85em;
    color: #999;
    margin-bottom: 15px;
}

.post-excerpt {
    margin-bottom: 20px;
    opacity: 0.8;
}

.read-more-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    color: var(--color-light); /* Domyślny kolor */
}

/* Dostosowanie dla responsywności (już masz Media Queries, więc tylko to): */
@media (max-width: 1050px) {
    .insights-container {
        flex-direction: column;
        align-items: center;
    }
    .insight-post {
        max-width: 80%;
        margin-bottom: 20px;
    }
}

/* --- MEDIA QUERIES (RESPONSYWNOŚĆ) --- */

@media (max-width: 900px) {

    .profile-layout {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }


    .profile-photo-container {

        text-align: center;

    }

   

    .profile-text {

        padding-left: 0;

        margin-top: 30px;

        text-align: center;

    }


    .right-aligned-text {

        text-align: center;

    }


    .bio-content p {

        margin-left: auto;

        margin-right: auto;

        text-align: center; /* Wyrównanie do środka na małych ekranach */

    }


    .name {

        font-size: 2.5em;

    }

   

    .contact-container {

        flex-direction: column;

        gap: 30px;

    }


    .contact-form {

        max-width: 100%;

    }


    .contact-form .cta-button {

        align-self: center;

    }


    .contact-info {

        text-align: center;

    }

}


/* --- NAWIGACJA GÓRNA I DOLNA (MAIN NAV) --- */

.main-nav {

    width: 100%;

    background-color: var(--color-dark);

    padding: 15px 5%;

    text-align: center;

    border-bottom: 1px solid #333; /* Subtelna linia separująca */

}


/* Właściwości dla górnego menu, aby stało się "sticky" */

body > .main-nav {

    position: sticky;

    top: 0;

    z-index: 1000; /* Upewnienie się, że jest na wierzchu */

    border-top: none;

}


.main-nav ul {

    list-style: none;

    display: flex;

    justify-content: center;

    gap: 40px;

}


.main-nav a {

    font-size: 1.1em;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.main-nav a:hover {

    color: var(--color-accent);

}


/* --- ZMIANA STYLU DLA STOPKI GŁÓWNEJ --- */

.site-footer {

    padding: 0; /* Usuwamy padding, który jest w sekcji .main-nav */

    background-color: var(--color-dark);

    text-align: center;

}


.site-footer .main-nav {

    border-top: 1px solid #333; /* Linia nad dolnym menu */

    border-bottom: none;

    padding-bottom: 15px; /* Dodatkowy margines */

}


/* Dodatkowa sekcja na informację o prawach autorskich */

.copyright-text {

    font-size: 0.8em;

    opacity: 0.5;

    padding-bottom: 20px;

    margin-top: -10px; /* Lekkie podciągnięcie do góry */

}


/* --- RESPONSIVE dla Menu --- */

@media (max-width: 600px) {

    .main-nav ul {

        gap: 20px;

        flex-wrap: wrap; /* Zawijanie linków na małych ekranach */

    }

    .main-nav a {

        font-size: 1em;

    }

} 